home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Utilities / ENV Server / Common src / utils.h < prev   
Encoding:
C/C++ Source or Header  |  1993-05-31  |  336 b   |  21 lines  |  [TEXT/ALFA]

  1. /*
  2. ** utils.h
  3. **
  4. ** header file for utilities
  5. */
  6.  
  7. #ifndef UTILS_H
  8. #define UTILS_H
  9.  
  10. Boolean TrapAvailable(int theTrap);
  11.  
  12.  
  13. /** My homebuilt string functions - to avoid the standard libraries **/
  14. long mystrlen( char *s);
  15. char *mystrcpy( char *s1, char *s2);
  16. char *mystrcat( char *s1, char *s2);
  17. char *mystrchr( char *s1, char c);
  18.  
  19. #endif
  20.  
  21.